home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / Technical Documentation / develop / develop Issue 26 / develop Issue 26 code / Truffles - Display Mgr. / SuperFly source / SuperFlyAppSpecific.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-17  |  535 b   |  24 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        SuperFlyAppSpecific.h
  3.  
  4.     Contains:    Code specific to my program  (as opposed to general functionality)
  5.                 
  6.     Written by: Kent Miller
  7.     
  8.     Copyright:    © 1995 Apple Computer
  9.  
  10.     Change History (most recent first):
  11.  
  12.  */
  13.  
  14. #include "LinkedList.h"
  15.  
  16. //Function Prototypes
  17. void    SuperFlyTearDownMyWindows(void);
  18. OSErr    SuperFlySetUpWindows(void);
  19. void    SuperFlyHandleGDevicesMoved(void);
  20.  
  21. //Global variables unique to our application
  22. extern         TLinkedList     *gMyWindowList;
  23. extern        Boolean            mirroringWasOn;  //Was mirroring on when I started?
  24.